https://github.com/nitaking/sample-blitz-svg-setting
https://github.com/nitaking/sample-blitz-svg-setting
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nitaking/sample-blitz-svg-setting
- Owner: nitaking
- Created: 2020-09-19T11:19:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-19T11:34:40.000Z (over 5 years ago)
- Last Synced: 2025-06-27T19:05:46.956Z (9 months ago)
- Language: TypeScript
- Size: 249 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reference: https://github.com/vercel/next.js/issues/14892
Detail commit: https://github.com/nitaking/sample-blitz-svg-setting/commit/58649f378bbce466fa43e29418c1a03260bfbb92
# How to this
đŸ‘‡install
```bash
yarn add babel-plugin-inline-react-svg
yarn add babel-plugin-module-resolver
```
đŸ‘‡edit `babel.config.js`
```diff
module.exports = {
presets: ["next/babel"],
-- plugins: [],
++ plugins: [
++ ["module-resolver", { "root": ["."] }],
++ "inline-react-svg",
++ ],
}
```
