├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .husky └── commit-msg ├── .npmrc ├── .nvmrc ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── src ├── __tests__ │ ├── index.spec.js │ └── webpack.spec.js ├── index.js └── webpack.js └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2.1 2 | 3 | orbs: 4 | newhighsco: newhighsco/orb@1.11.0 5 | 6 | workflows: 7 | version: 2 8 | test_and_release: 9 | jobs: 10 | - newhighsco/setup: 11 | name: setup 12 | - newhighsco/test: 13 | name: test 14 | rerun-only-failed: true 15 | requires: 16 | - setup 17 | - newhighsco/release: 18 | name: release 19 | requires: 20 | - test 21 | filters: 22 | branches: 23 | only: 24 | - main 25 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | auto_format_on_save = true 5 | charset = utf-8 6 | end_of_line = lf 7 | indent_size = 2 8 | indent_style = space 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Sublime 2 | *.sublime-project 3 | *.sublime-workspace 4 | 5 | # Windows 6 | Thumbs.db 7 | 8 | # Vim 9 | .*.sw[a-z] 10 | *.un~i 11 | 12 | # OsX 13 | .DS_Store 14 | ._* 15 | .Spotlight-V100 16 | .Trashes 17 | 18 | # Package managers 19 | node_modules 20 | npm-debug.log 21 | yarn-error.log 22 | 23 | # Project specific 24 | .eslintcache 25 | coverage 26 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | yarn commitlint --edit 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | access=public 2 | package-lock=false 3 | scripts-prepend-node-path=true 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.16.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | /node_modules 3 | 4 | # testing 5 | /coverage 6 | 7 | # misc 8 | npm-debug.log* 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [3.0.157](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.156...v3.0.157) (2025-03-04) 2 | 3 | 4 | ### Bug Fixes 5 | 6 | * **deps:** update dependency next to v15.2.1 ([#1566](https://github.com/newhighsco/next-plugin-svgr/issues/1566)) ([9866c7a](https://github.com/newhighsco/next-plugin-svgr/commit/9866c7a7d6e819d4c6fc0ad03f24a277b4124f50)) 7 | 8 | ## [3.0.156](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.155...v3.0.156) (2025-02-27) 9 | 10 | 11 | ### Bug Fixes 12 | 13 | * **deps:** update dependency next to v15.2.0 ([#1561](https://github.com/newhighsco/next-plugin-svgr/issues/1561)) ([99cc3ac](https://github.com/newhighsco/next-plugin-svgr/commit/99cc3ac2a3cbf1f6b76a2e7bd350b57dab0e4a70)) 14 | 15 | ## [3.0.155](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.154...v3.0.155) (2025-02-12) 16 | 17 | 18 | ### Bug Fixes 19 | 20 | * **deps:** update dependency next to v15.1.7 ([#1548](https://github.com/newhighsco/next-plugin-svgr/issues/1548)) ([bb6b6a7](https://github.com/newhighsco/next-plugin-svgr/commit/bb6b6a7e2f918731bf2f482173986c65d2eec3df)) 21 | 22 | ## [3.0.154](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.153...v3.0.154) (2025-01-24) 23 | 24 | ## [3.0.153](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.152...v3.0.153) (2025-01-22) 25 | 26 | 27 | ### Bug Fixes 28 | 29 | * **deps:** update dependency next to v15.1.6 ([#1537](https://github.com/newhighsco/next-plugin-svgr/issues/1537)) ([b5d31d4](https://github.com/newhighsco/next-plugin-svgr/commit/b5d31d48e08f8f8aa87c84df571596e09be3a06c)) 30 | 31 | ## [3.0.152](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.151...v3.0.152) (2025-01-17) 32 | 33 | 34 | ### Bug Fixes 35 | 36 | * **deps:** update dependency next to v15.1.5 ([#1533](https://github.com/newhighsco/next-plugin-svgr/issues/1533)) ([e56379f](https://github.com/newhighsco/next-plugin-svgr/commit/e56379f6384d11519b3e7b2d677c16faf13120c4)) 37 | 38 | ## [3.0.151](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.150...v3.0.151) (2025-01-08) 39 | 40 | 41 | ### Bug Fixes 42 | 43 | * **deps:** update dependency next to v15.1.4 ([#1527](https://github.com/newhighsco/next-plugin-svgr/issues/1527)) ([af9198c](https://github.com/newhighsco/next-plugin-svgr/commit/af9198c7576861bc9918c8d7074a68a96cf22b05)) 44 | 45 | ## [3.0.150](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.149...v3.0.150) (2024-12-26) 46 | 47 | 48 | ### Bug Fixes 49 | 50 | * **deps:** update dependency next to v15.1.3 ([#1521](https://github.com/newhighsco/next-plugin-svgr/issues/1521)) ([8e0c781](https://github.com/newhighsco/next-plugin-svgr/commit/8e0c781bb524a65bfe443ee357cad508a11cdd7f)) 51 | 52 | ## [3.0.149](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.148...v3.0.149) (2024-12-19) 53 | 54 | 55 | ### Bug Fixes 56 | 57 | * **deps:** update dependency next to v15.1.2 ([#1518](https://github.com/newhighsco/next-plugin-svgr/issues/1518)) ([8212113](https://github.com/newhighsco/next-plugin-svgr/commit/821211339bc65aa4eb6150ce2eb3f63a31c8f3bf)) 58 | 59 | ## [3.0.148](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.147...v3.0.148) (2024-12-18) 60 | 61 | 62 | ### Bug Fixes 63 | 64 | * **deps:** update dependency next to v15.1.1 ([#1517](https://github.com/newhighsco/next-plugin-svgr/issues/1517)) ([8cea0f7](https://github.com/newhighsco/next-plugin-svgr/commit/8cea0f797f9a85054eb0e1cc8f79fc8a55512577)) 65 | 66 | ## [3.0.147](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.146...v3.0.147) (2024-12-11) 67 | 68 | 69 | ### Bug Fixes 70 | 71 | * **deps:** update dependency next to v15.1.0 ([#1513](https://github.com/newhighsco/next-plugin-svgr/issues/1513)) ([5f52a36](https://github.com/newhighsco/next-plugin-svgr/commit/5f52a36bdb2ddf791d35b4cf2bd890fc35f152ac)) 72 | 73 | ## [3.0.146](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.145...v3.0.146) (2024-12-06) 74 | 75 | 76 | ### Bug Fixes 77 | 78 | * **deps:** update dependency next to v15.0.4 ([#1510](https://github.com/newhighsco/next-plugin-svgr/issues/1510)) ([8da9b18](https://github.com/newhighsco/next-plugin-svgr/commit/8da9b18e1f68e3e5b204abccbb801ca6d031d657)) 79 | 80 | ## [3.0.145](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.144...v3.0.145) (2024-11-07) 81 | 82 | 83 | ### Bug Fixes 84 | 85 | * **deps:** update dependency next to v15.0.3 ([#1493](https://github.com/newhighsco/next-plugin-svgr/issues/1493)) ([ba3f108](https://github.com/newhighsco/next-plugin-svgr/commit/ba3f108e9eca01bd6d66f823b03b426906f9e6d3)) 86 | 87 | ## [3.0.144](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.143...v3.0.144) (2024-10-29) 88 | 89 | 90 | ### Bug Fixes 91 | 92 | * **deps:** update dependency next to v15.0.2 ([#1485](https://github.com/newhighsco/next-plugin-svgr/issues/1485)) ([e19c32f](https://github.com/newhighsco/next-plugin-svgr/commit/e19c32f9b01ef1f77cd8df1f14bbed425d6d13ab)) 93 | 94 | ## [3.0.143](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.142...v3.0.143) (2024-10-23) 95 | 96 | 97 | ### Bug Fixes 98 | 99 | * **deps:** update dependency next to v15.0.1 ([#1482](https://github.com/newhighsco/next-plugin-svgr/issues/1482)) ([c91b2ad](https://github.com/newhighsco/next-plugin-svgr/commit/c91b2ad15f87267a77ab32df8766ea57f313fa5a)) 100 | 101 | ## [3.0.142](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.141...v3.0.142) (2024-10-22) 102 | 103 | 104 | ### Bug Fixes 105 | 106 | * **deps:** update dependency next to v15 ([#1480](https://github.com/newhighsco/next-plugin-svgr/issues/1480)) ([a979d64](https://github.com/newhighsco/next-plugin-svgr/commit/a979d648903d79b1cf66bc741bcc694d446843d4)) 107 | 108 | ## [3.0.141](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.140...v3.0.141) (2024-10-09) 109 | 110 | 111 | ### Bug Fixes 112 | 113 | * **deps:** update dependency next to v14.2.15 ([#1469](https://github.com/newhighsco/next-plugin-svgr/issues/1469)) ([3ef5b23](https://github.com/newhighsco/next-plugin-svgr/commit/3ef5b23bac5afc28a419acc410de3c6f5647b28f)) 114 | 115 | ## [3.0.140](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.139...v3.0.140) (2024-10-02) 116 | 117 | 118 | ### Bug Fixes 119 | 120 | * **deps:** update dependency next to v14.2.14 ([#1464](https://github.com/newhighsco/next-plugin-svgr/issues/1464)) ([9098064](https://github.com/newhighsco/next-plugin-svgr/commit/9098064cac72c6557df484fb54ce0c218baeda76)) 121 | 122 | ## [3.0.139](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.138...v3.0.139) (2024-09-20) 123 | 124 | 125 | ### Bug Fixes 126 | 127 | * **deps:** update dependency next to v14.2.13 ([#1456](https://github.com/newhighsco/next-plugin-svgr/issues/1456)) ([acaba92](https://github.com/newhighsco/next-plugin-svgr/commit/acaba925882382586780ba83bb305ada4d6588e8)) 128 | 129 | ## [3.0.138](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.137...v3.0.138) (2024-09-18) 130 | 131 | 132 | ### Bug Fixes 133 | 134 | * **deps:** update dependency next to v14.2.12 ([#1454](https://github.com/newhighsco/next-plugin-svgr/issues/1454)) ([7f5edf2](https://github.com/newhighsco/next-plugin-svgr/commit/7f5edf2ec3ff2528789f3a7005f40dc5e9e59909)) 135 | 136 | ## [3.0.137](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.136...v3.0.137) (2024-09-12) 137 | 138 | 139 | ### Bug Fixes 140 | 141 | * **deps:** update dependency next to v14.2.11 ([#1449](https://github.com/newhighsco/next-plugin-svgr/issues/1449)) ([3c9f7f4](https://github.com/newhighsco/next-plugin-svgr/commit/3c9f7f42e670271c716371216453c09287bc34ee)) 142 | 143 | ## [3.0.136](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.135...v3.0.136) (2024-09-12) 144 | 145 | 146 | ### Bug Fixes 147 | 148 | * **deps:** update dependency next to v14.2.10 ([#1446](https://github.com/newhighsco/next-plugin-svgr/issues/1446)) ([ec9f533](https://github.com/newhighsco/next-plugin-svgr/commit/ec9f53325f531b3f98e4ba85b2a6a92ca4873aa0)) 149 | 150 | ## [3.0.135](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.134...v3.0.135) (2024-09-09) 151 | 152 | 153 | ### Bug Fixes 154 | 155 | * **deps:** update dependency next to v14.2.9 ([#1441](https://github.com/newhighsco/next-plugin-svgr/issues/1441)) ([f36c062](https://github.com/newhighsco/next-plugin-svgr/commit/f36c062d3db107850b9cda43085227fe807af2f3)) 156 | 157 | ## [3.0.134](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.133...v3.0.134) (2024-09-05) 158 | 159 | 160 | ### Bug Fixes 161 | 162 | * **deps:** update dependency next to v14.2.8 ([#1438](https://github.com/newhighsco/next-plugin-svgr/issues/1438)) ([a8b8eb2](https://github.com/newhighsco/next-plugin-svgr/commit/a8b8eb278fb7dd70a7a872e0e105978b4b7224af)) 163 | 164 | ## [3.0.133](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.132...v3.0.133) (2024-08-27) 165 | 166 | 167 | ### Bug Fixes 168 | 169 | * **deps:** update dependency next to v14.2.7 ([#1429](https://github.com/newhighsco/next-plugin-svgr/issues/1429)) ([de2c0ff](https://github.com/newhighsco/next-plugin-svgr/commit/de2c0ff92671ee23accc96a698508fc07665176c)) 170 | 171 | ## [3.0.132](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.131...v3.0.132) (2024-08-22) 172 | 173 | 174 | ### Bug Fixes 175 | 176 | * **deps:** update dependency next to v14.2.6 ([#1427](https://github.com/newhighsco/next-plugin-svgr/issues/1427)) ([a0ac1ed](https://github.com/newhighsco/next-plugin-svgr/commit/a0ac1edc4ccfa267e8442a77f3cb3af0a408383c)) 177 | 178 | ## [3.0.131](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.130...v3.0.131) (2024-07-10) 179 | 180 | 181 | ### Bug Fixes 182 | 183 | * **deps:** update dependency next to v14.2.5 ([#1392](https://github.com/newhighsco/next-plugin-svgr/issues/1392)) ([8b9a871](https://github.com/newhighsco/next-plugin-svgr/commit/8b9a8716caa71fe2170fb1d96651038f206cdad4)) 184 | 185 | ## [3.0.130](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.129...v3.0.130) (2024-06-12) 186 | 187 | 188 | ### Bug Fixes 189 | 190 | * **deps:** update dependency next to v14.2.4 ([#1389](https://github.com/newhighsco/next-plugin-svgr/issues/1389)) ([fb4dbdd](https://github.com/newhighsco/next-plugin-svgr/commit/fb4dbdd5fe470d3aa59c671780e723d8d92a1bed)) 191 | 192 | ## [3.0.129](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.128...v3.0.129) (2024-04-24) 193 | 194 | 195 | ### Bug Fixes 196 | 197 | * **deps:** update dependency next to v14.2.3 ([#1350](https://github.com/newhighsco/next-plugin-svgr/issues/1350)) ([666e50d](https://github.com/newhighsco/next-plugin-svgr/commit/666e50dbdae0a7173ec679bff0302d0a79ec0bab)) 198 | 199 | ## [3.0.128](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.127...v3.0.128) (2024-04-18) 200 | 201 | 202 | ### Bug Fixes 203 | 204 | * **deps:** update dependency next to v14.2.2 ([#1344](https://github.com/newhighsco/next-plugin-svgr/issues/1344)) ([4f38b6c](https://github.com/newhighsco/next-plugin-svgr/commit/4f38b6ca9882dc70c96b45b95f23d7bd5416bb74)) 205 | 206 | ## [3.0.127](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.126...v3.0.127) (2024-04-13) 207 | 208 | 209 | ### Bug Fixes 210 | 211 | * **deps:** update dependency next to v14.2.1 ([#1337](https://github.com/newhighsco/next-plugin-svgr/issues/1337)) ([d53124e](https://github.com/newhighsco/next-plugin-svgr/commit/d53124e522bac74d817b4d341027a520e20e24d9)) 212 | 213 | ## [3.0.126](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.125...v3.0.126) (2024-04-12) 214 | 215 | 216 | ### Bug Fixes 217 | 218 | * **deps:** update dependency next to v14.2.0 ([#1335](https://github.com/newhighsco/next-plugin-svgr/issues/1335)) ([1c789da](https://github.com/newhighsco/next-plugin-svgr/commit/1c789da3f57dd7193445baaa8195ed8cf8e9fb81)) 219 | 220 | ## [3.0.125](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.124...v3.0.125) (2024-03-20) 221 | 222 | 223 | ### Bug Fixes 224 | 225 | * **deps:** update dependency next to v14.1.4 ([#1318](https://github.com/newhighsco/next-plugin-svgr/issues/1318)) ([9dd4076](https://github.com/newhighsco/next-plugin-svgr/commit/9dd4076482530036ac257fd98a009322e115a361)) 226 | 227 | ## [3.0.124](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.123...v3.0.124) (2024-03-07) 228 | 229 | 230 | ### Bug Fixes 231 | 232 | * **deps:** update dependency next to v14.1.3 ([#1299](https://github.com/newhighsco/next-plugin-svgr/issues/1299)) ([3d7e9b3](https://github.com/newhighsco/next-plugin-svgr/commit/3d7e9b3862b5bd9db5746ea231c5ec6b13a9dea4)) 233 | 234 | ## [3.0.123](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.122...v3.0.123) (2024-03-05) 235 | 236 | 237 | ### Bug Fixes 238 | 239 | * **deps:** update dependency next to v14.1.2 ([#1298](https://github.com/newhighsco/next-plugin-svgr/issues/1298)) ([44e5c2c](https://github.com/newhighsco/next-plugin-svgr/commit/44e5c2ce02e8d4428b15fbe76229eb0e2329f702)) 240 | 241 | ## [3.0.122](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.121...v3.0.122) (2024-03-02) 242 | 243 | 244 | ### Bug Fixes 245 | 246 | * **deps:** update dependency next to v14.1.1 ([#1293](https://github.com/newhighsco/next-plugin-svgr/issues/1293)) ([3435305](https://github.com/newhighsco/next-plugin-svgr/commit/343530519fc3ec4b4ca0a31f70edd053af655d5c)) 247 | 248 | ## [3.0.121](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.120...v3.0.121) (2024-01-19) 249 | 250 | 251 | ### Bug Fixes 252 | 253 | * **deps:** update dependency next to v14.1.0 ([#1264](https://github.com/newhighsco/next-plugin-svgr/issues/1264)) ([e0d0f34](https://github.com/newhighsco/next-plugin-svgr/commit/e0d0f34ba93196d9e71d8ebc515d6c4d39f1298d)) 254 | 255 | ## [3.0.120](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.119...v3.0.120) (2023-12-08) 256 | 257 | 258 | ### Bug Fixes 259 | 260 | * **deps:** update dependency next to v14.0.4 ([#1220](https://github.com/newhighsco/next-plugin-svgr/issues/1220)) ([f4bf276](https://github.com/newhighsco/next-plugin-svgr/commit/f4bf27664db5c2a643523e54acb76ddae15e6314)) 261 | 262 | ## [3.0.119](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.118...v3.0.119) (2023-11-16) 263 | 264 | 265 | ### Bug Fixes 266 | 267 | * **deps:** update dependency next to v14.0.3 ([#1199](https://github.com/newhighsco/next-plugin-svgr/issues/1199)) ([8d456f5](https://github.com/newhighsco/next-plugin-svgr/commit/8d456f5f8a8eb95eaf29b24575c709d35ecce68f)) 268 | 269 | ## [3.0.118](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.117...v3.0.118) (2023-11-10) 270 | 271 | 272 | ### Bug Fixes 273 | 274 | * **deps:** update dependency next to v14.0.2 ([#1187](https://github.com/newhighsco/next-plugin-svgr/issues/1187)) ([430c134](https://github.com/newhighsco/next-plugin-svgr/commit/430c134b8e1c3cd2f76e2aa7ad8e9dbd0dde2198)) 275 | 276 | ## [3.0.117](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.116...v3.0.117) (2023-10-30) 277 | 278 | 279 | ### Bug Fixes 280 | 281 | * **deps:** update dependency next to v14.0.1 ([#1172](https://github.com/newhighsco/next-plugin-svgr/issues/1172)) ([141b219](https://github.com/newhighsco/next-plugin-svgr/commit/141b2193d22dcaaa44bac917b1e9ef94b28c2faa)) 282 | 283 | ## [3.0.116](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.115...v3.0.116) (2023-10-27) 284 | 285 | 286 | ### Bug Fixes 287 | 288 | * **deps:** update dependency next to v14 ([#1171](https://github.com/newhighsco/next-plugin-svgr/issues/1171)) ([9b412c3](https://github.com/newhighsco/next-plugin-svgr/commit/9b412c39a0bbeeec5d97c37547f15f9b962e42f4)) 289 | 290 | ## [3.0.115](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.114...v3.0.115) (2023-10-19) 291 | 292 | 293 | ### Bug Fixes 294 | 295 | * **deps:** update dependency next to v13.5.6 ([#1158](https://github.com/newhighsco/next-plugin-svgr/issues/1158)) ([e9cef7c](https://github.com/newhighsco/next-plugin-svgr/commit/e9cef7c4ca92d76f99b4b33ce66ad23063340663)) 296 | 297 | ## [3.0.114](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.113...v3.0.114) (2023-10-16) 298 | 299 | 300 | ### Bug Fixes 301 | 302 | * **deps:** update dependency next to v13.5.5 ([#1156](https://github.com/newhighsco/next-plugin-svgr/issues/1156)) ([584eb3f](https://github.com/newhighsco/next-plugin-svgr/commit/584eb3f532caadec5f1bab26a79d6f48b565b01d)) 303 | 304 | ## [3.0.113](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.112...v3.0.113) (2023-10-03) 305 | 306 | 307 | ### Bug Fixes 308 | 309 | * **deps:** update dependency next to v13.5.4 ([#1141](https://github.com/newhighsco/next-plugin-svgr/issues/1141)) ([3f08e91](https://github.com/newhighsco/next-plugin-svgr/commit/3f08e91671bc66fb7c766b461b164e4c02fc7cf3)) 310 | 311 | ## [3.0.112](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.111...v3.0.112) (2023-09-25) 312 | 313 | 314 | ### Bug Fixes 315 | 316 | * **deps:** update dependency next to v13.5.3 ([#1133](https://github.com/newhighsco/next-plugin-svgr/issues/1133)) ([83abbc7](https://github.com/newhighsco/next-plugin-svgr/commit/83abbc7418d543eb8f3dd28acbe65f8ffc3a4985)) 317 | 318 | ## [3.0.111](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.110...v3.0.111) (2023-09-20) 319 | 320 | 321 | ### Bug Fixes 322 | 323 | * **deps:** update dependency next to v13.5.2 ([#1121](https://github.com/newhighsco/next-plugin-svgr/issues/1121)) ([c0e0e1c](https://github.com/newhighsco/next-plugin-svgr/commit/c0e0e1c0f3f6888b641137c15bd0996206941f6b)) 324 | 325 | ## [3.0.110](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.109...v3.0.110) (2023-09-19) 326 | 327 | 328 | ### Bug Fixes 329 | 330 | * **deps:** update dependency next to v13.5.1 ([#1120](https://github.com/newhighsco/next-plugin-svgr/issues/1120)) ([8215b07](https://github.com/newhighsco/next-plugin-svgr/commit/8215b073a1f01aaefba0938f21a84eb9475e9f45)) 331 | 332 | ## [3.0.109](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.108...v3.0.109) (2023-08-19) 333 | 334 | 335 | ### Bug Fixes 336 | 337 | * **deps:** update dependency next to v13.4.19 ([#1074](https://github.com/newhighsco/next-plugin-svgr/issues/1074)) ([a62f6ce](https://github.com/newhighsco/next-plugin-svgr/commit/a62f6ce987e3324d5ca43c5eafcf43bc941febb5)) 338 | 339 | ## [3.0.108](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.107...v3.0.108) (2023-08-18) 340 | 341 | 342 | ### Bug Fixes 343 | 344 | * **deps:** update dependency next to v13.4.18 ([#1072](https://github.com/newhighsco/next-plugin-svgr/issues/1072)) ([44eba26](https://github.com/newhighsco/next-plugin-svgr/commit/44eba2635238b36e4e3d5524c576113832808c02)) 345 | 346 | ## [3.0.107](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.106...v3.0.107) (2023-08-17) 347 | 348 | 349 | ### Bug Fixes 350 | 351 | * **deps:** update dependency @svgr/webpack to v8.1.0 ([#1070](https://github.com/newhighsco/next-plugin-svgr/issues/1070)) ([ae59c94](https://github.com/newhighsco/next-plugin-svgr/commit/ae59c94f397af9950c244594c162721ddbb1c862)) 352 | 353 | ## [3.0.106](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.105...v3.0.106) (2023-08-16) 354 | 355 | 356 | ### Bug Fixes 357 | 358 | * **deps:** update dependency next to v13.4.16 ([#1068](https://github.com/newhighsco/next-plugin-svgr/issues/1068)) ([e0c41ec](https://github.com/newhighsco/next-plugin-svgr/commit/e0c41ec93fee073fb8cc6dec4654daa6b5f8ec4f)) 359 | 360 | ## [3.0.105](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.104...v3.0.105) (2023-08-07) 361 | 362 | 363 | ### Bug Fixes 364 | 365 | * **deps:** update dependency next to v13.4.13 ([#1056](https://github.com/newhighsco/next-plugin-svgr/issues/1056)) ([28abca2](https://github.com/newhighsco/next-plugin-svgr/commit/28abca27e23a3e4fda90b1eac8c4aae78fac4870)) 366 | 367 | ## [3.0.104](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.103...v3.0.104) (2023-07-22) 368 | 369 | 370 | ### Bug Fixes 371 | 372 | * **deps:** update dependency next to v13.4.12 ([#1043](https://github.com/newhighsco/next-plugin-svgr/issues/1043)) ([615a78f](https://github.com/newhighsco/next-plugin-svgr/commit/615a78f0d75074c4fd04dbc6a579f8bca0d0af4a)) 373 | 374 | ## [3.0.103](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.102...v3.0.103) (2023-07-21) 375 | 376 | 377 | ### Bug Fixes 378 | 379 | * **deps:** update dependency next to v13.4.11 ([#1042](https://github.com/newhighsco/next-plugin-svgr/issues/1042)) ([ae6fc12](https://github.com/newhighsco/next-plugin-svgr/commit/ae6fc12a4f202de7e8b4ce00dfdf51d336627cd8)) 380 | 381 | ## [3.0.102](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.101...v3.0.102) (2023-07-14) 382 | 383 | 384 | ### Bug Fixes 385 | 386 | * **deps:** update dependency next to v13.4.10 ([#1031](https://github.com/newhighsco/next-plugin-svgr/issues/1031)) ([51c78fe](https://github.com/newhighsco/next-plugin-svgr/commit/51c78fe16e3695d6eaadffd937cde27968b306c8)) 387 | 388 | ## [3.0.101](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.100...v3.0.101) (2023-07-07) 389 | 390 | 391 | ### Bug Fixes 392 | 393 | * **deps:** update dependency next to v13.4.9 ([#1026](https://github.com/newhighsco/next-plugin-svgr/issues/1026)) ([e22f4d5](https://github.com/newhighsco/next-plugin-svgr/commit/e22f4d5efba127042147b075ed36e3813433cdfa)) 394 | 395 | ## [3.0.100](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.99...v3.0.100) (2023-07-03) 396 | 397 | 398 | ### Bug Fixes 399 | 400 | * **deps:** update dependency next to v13.4.8 ([#1016](https://github.com/newhighsco/next-plugin-svgr/issues/1016)) ([ec52410](https://github.com/newhighsco/next-plugin-svgr/commit/ec5241021123ed13938fc9bbeef62091f9cee44d)) 401 | 402 | ## [3.0.99](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.98...v3.0.99) (2023-06-22) 403 | 404 | 405 | ### Bug Fixes 406 | 407 | * **deps:** update dependency next to v13.4.7 ([#1007](https://github.com/newhighsco/next-plugin-svgr/issues/1007)) ([2a4abfa](https://github.com/newhighsco/next-plugin-svgr/commit/2a4abfaf508882ce851c14eb2520b76cec0812b2)) 408 | 409 | ## [3.0.98](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.97...v3.0.98) (2023-06-16) 410 | 411 | 412 | ### Bug Fixes 413 | 414 | * **deps:** update dependency next to v13.4.6 ([#1004](https://github.com/newhighsco/next-plugin-svgr/issues/1004)) ([ebf2fe3](https://github.com/newhighsco/next-plugin-svgr/commit/ebf2fe3087e8ff09b77b55d216490818dcfbd224)) 415 | 416 | ## [3.0.97](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.96...v3.0.97) (2023-06-14) 417 | 418 | 419 | ### Bug Fixes 420 | 421 | * **deps:** update dependency next to v13.4.5 ([#1003](https://github.com/newhighsco/next-plugin-svgr/issues/1003)) ([3e338af](https://github.com/newhighsco/next-plugin-svgr/commit/3e338af7a4c3ab638968b62ec2ac27973f8226c7)) 422 | 423 | ## [3.0.96](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.95...v3.0.96) (2023-05-26) 424 | 425 | 426 | ### Bug Fixes 427 | 428 | * **deps:** update dependency next to v13.4.4 ([#995](https://github.com/newhighsco/next-plugin-svgr/issues/995)) ([31598b4](https://github.com/newhighsco/next-plugin-svgr/commit/31598b424bf118cb1ec6467b8daf5fdb8455f966)) 429 | 430 | ## [3.0.95](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.94...v3.0.95) (2023-05-19) 431 | 432 | 433 | ### Bug Fixes 434 | 435 | * **deps:** update dependency next to v13.4.3 ([#993](https://github.com/newhighsco/next-plugin-svgr/issues/993)) ([92b0a4a](https://github.com/newhighsco/next-plugin-svgr/commit/92b0a4a316523220d0360bbfdddef0aa5afdf96b)) 436 | 437 | ## [3.0.94](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.93...v3.0.94) (2023-05-12) 438 | 439 | 440 | ### Bug Fixes 441 | 442 | * **deps:** update dependency next to v13.4.2 ([#992](https://github.com/newhighsco/next-plugin-svgr/issues/992)) ([f172e09](https://github.com/newhighsco/next-plugin-svgr/commit/f172e09e18e9d5a028450e5189b849c5114acc97)) 443 | 444 | ## [3.0.93](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.92...v3.0.93) (2023-05-10) 445 | 446 | 447 | ### Bug Fixes 448 | 449 | * **deps:** update dependency @svgr/webpack to v8 ([#991](https://github.com/newhighsco/next-plugin-svgr/issues/991)) ([06c64ec](https://github.com/newhighsco/next-plugin-svgr/commit/06c64ecaf63b1adfb1bed4f29ecd0907ce5aa0a7)) 450 | 451 | ## [3.0.92](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.91...v3.0.92) (2023-05-05) 452 | 453 | 454 | ### Bug Fixes 455 | 456 | * **deps:** update dependency next to v13.4.1 ([#989](https://github.com/newhighsco/next-plugin-svgr/issues/989)) ([54e3b20](https://github.com/newhighsco/next-plugin-svgr/commit/54e3b20cf5bf64dfa875ccc1f0d37e8973152ace)) 457 | 458 | ## [3.0.91](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.90...v3.0.91) (2023-05-04) 459 | 460 | 461 | ### Bug Fixes 462 | 463 | * **deps:** update dependency next to v13.4.0 ([#988](https://github.com/newhighsco/next-plugin-svgr/issues/988)) ([ed3c6da](https://github.com/newhighsco/next-plugin-svgr/commit/ed3c6da044ceb3d0267e0aa47be9dd69a1a0844c)) 464 | 465 | ## [3.0.90](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.89...v3.0.90) (2023-05-01) 466 | 467 | 468 | ### Bug Fixes 469 | 470 | * **deps:** update dependency next to v13.3.4 ([#985](https://github.com/newhighsco/next-plugin-svgr/issues/985)) ([6f47efd](https://github.com/newhighsco/next-plugin-svgr/commit/6f47efdb9ce8ab499d61764f3056fae9d53565f4)) 471 | 472 | ## [3.0.89](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.88...v3.0.89) (2023-04-30) 473 | 474 | 475 | ### Bug Fixes 476 | 477 | * **deps:** update dependency next to v13.3.2 ([#984](https://github.com/newhighsco/next-plugin-svgr/issues/984)) ([58335da](https://github.com/newhighsco/next-plugin-svgr/commit/58335da76e529f1b586cdfad5d292be1849cc4a1)) 478 | 479 | ## [3.0.88](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.87...v3.0.88) (2023-04-22) 480 | 481 | 482 | ### Bug Fixes 483 | 484 | * **deps:** update dependency next to v13.3.1 ([#979](https://github.com/newhighsco/next-plugin-svgr/issues/979)) ([7bf5a7c](https://github.com/newhighsco/next-plugin-svgr/commit/7bf5a7c0e01e13756408bcf2dabeebc954c69609)) 485 | 486 | ## [3.0.87](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.86...v3.0.87) (2023-04-07) 487 | 488 | 489 | ### Bug Fixes 490 | 491 | * **deps:** update dependency next to v13.3.0 ([#974](https://github.com/newhighsco/next-plugin-svgr/issues/974)) ([d0b623d](https://github.com/newhighsco/next-plugin-svgr/commit/d0b623d719d2689e8cea57b1cb4986852f16c554)) 492 | 493 | ## [3.0.86](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.85...v3.0.86) (2023-03-27) 494 | 495 | 496 | ### Bug Fixes 497 | 498 | * **deps:** update dependency @svgr/webpack to v7 ([#968](https://github.com/newhighsco/next-plugin-svgr/issues/968)) ([1880a57](https://github.com/newhighsco/next-plugin-svgr/commit/1880a5751dd621f3a5f4d293c598f5e565d76d6c)) 499 | 500 | ## [3.0.85](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.84...v3.0.85) (2023-03-10) 501 | 502 | 503 | ### Bug Fixes 504 | 505 | * **deps:** update dependency next to v13.2.4 ([#952](https://github.com/newhighsco/next-plugin-svgr/issues/952)) ([2ebed87](https://github.com/newhighsco/next-plugin-svgr/commit/2ebed87696ea8a0cb8748bc65e41fbd4267dd1f1)) 506 | 507 | ## [3.0.84](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.83...v3.0.84) (2023-03-01) 508 | 509 | 510 | ### Bug Fixes 511 | 512 | * **deps:** update dependency next to v13.2.3 ([#948](https://github.com/newhighsco/next-plugin-svgr/issues/948)) ([2bc48a3](https://github.com/newhighsco/next-plugin-svgr/commit/2bc48a3aa1d65cc13b7bd1ca7e174c736dd91998)) 513 | 514 | ## [3.0.83](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.82...v3.0.83) (2023-03-01) 515 | 516 | 517 | ### Bug Fixes 518 | 519 | * **deps:** update dependency next to v13.2.2 ([#947](https://github.com/newhighsco/next-plugin-svgr/issues/947)) ([e15c11b](https://github.com/newhighsco/next-plugin-svgr/commit/e15c11b47e936db8313a60e54eeb4e947e9e267a)) 520 | 521 | ## [3.0.82](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.81...v3.0.82) (2023-02-24) 522 | 523 | 524 | ### Bug Fixes 525 | 526 | * **deps:** update dependency next to v13.2.1 ([#941](https://github.com/newhighsco/next-plugin-svgr/issues/941)) ([8e49d1e](https://github.com/newhighsco/next-plugin-svgr/commit/8e49d1e887142a8e2600e9c6891f942f5dc4109e)) 527 | 528 | ## [3.0.81](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.80...v3.0.81) (2023-02-23) 529 | 530 | 531 | ### Bug Fixes 532 | 533 | * **deps:** update dependency next to v13.2.0 ([#940](https://github.com/newhighsco/next-plugin-svgr/issues/940)) ([8635e68](https://github.com/newhighsco/next-plugin-svgr/commit/8635e68caae336d7d3f6cb159a9a206af9cf2f71)) 534 | 535 | ## [3.0.80](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.79...v3.0.80) (2023-01-28) 536 | 537 | 538 | ### Bug Fixes 539 | 540 | * **deps:** update dependency next to v13.1.6 ([#914](https://github.com/newhighsco/next-plugin-svgr/issues/914)) ([b54288f](https://github.com/newhighsco/next-plugin-svgr/commit/b54288f04a3aa2b8a4cb0819b3ae43c537155d08)) 541 | 542 | ## [3.0.79](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.78...v3.0.79) (2023-01-24) 543 | 544 | 545 | ### Bug Fixes 546 | 547 | * **deps:** update dependency next to v13.1.5 ([#904](https://github.com/newhighsco/next-plugin-svgr/issues/904)) ([f46293f](https://github.com/newhighsco/next-plugin-svgr/commit/f46293f630e142205922924b645afb5fa5d9ac5e)) 548 | 549 | ## [3.0.78](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.77...v3.0.78) (2023-01-21) 550 | 551 | 552 | ### Bug Fixes 553 | 554 | * **deps:** update dependency next to v13.1.4 ([#901](https://github.com/newhighsco/next-plugin-svgr/issues/901)) ([7a487bc](https://github.com/newhighsco/next-plugin-svgr/commit/7a487bc9d30004ed42107ee5ac39f3403de59ee2)) 555 | 556 | ## [3.0.77](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.76...v3.0.77) (2023-01-20) 557 | 558 | 559 | ### Bug Fixes 560 | 561 | * **deps:** update dependency next to v13.1.3 ([#900](https://github.com/newhighsco/next-plugin-svgr/issues/900)) ([8da2eef](https://github.com/newhighsco/next-plugin-svgr/commit/8da2eef4b7f5dbffa0e000c3f5e4fa26e957ba81)) 562 | 563 | ## [3.0.76](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.75...v3.0.76) (2023-01-13) 564 | 565 | 566 | ### Bug Fixes 567 | 568 | * **deps:** update dependency next to v13.1.2 ([#892](https://github.com/newhighsco/next-plugin-svgr/issues/892)) ([97914de](https://github.com/newhighsco/next-plugin-svgr/commit/97914ded537e7728ca9c98672b9f45e3f700964a)) 569 | 570 | ## [3.0.75](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.74...v3.0.75) (2022-12-24) 571 | 572 | 573 | ### Bug Fixes 574 | 575 | * **deps:** update dependency next to v13.1.1 ([#874](https://github.com/newhighsco/next-plugin-svgr/issues/874)) ([0cd82ac](https://github.com/newhighsco/next-plugin-svgr/commit/0cd82ac6049214a85238a3dbc429433a5286488e)) 576 | 577 | ## [3.0.74](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.73...v3.0.74) (2022-12-22) 578 | 579 | 580 | ### Bug Fixes 581 | 582 | * **deps:** update dependency next to v13.1.0 ([#873](https://github.com/newhighsco/next-plugin-svgr/issues/873)) ([3c2597c](https://github.com/newhighsco/next-plugin-svgr/commit/3c2597cd08314ccb13cbff94af62dbce8fb89757)) 583 | 584 | ## [3.0.73](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.72...v3.0.73) (2022-12-15) 585 | 586 | 587 | ### Bug Fixes 588 | 589 | * **deps:** update dependency next to v13.0.7 ([#870](https://github.com/newhighsco/next-plugin-svgr/issues/870)) ([5b7bfdb](https://github.com/newhighsco/next-plugin-svgr/commit/5b7bfdb04f00cf0f89adcba03eba698d7be3d2ba)) 590 | 591 | ## [3.0.72](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.71...v3.0.72) (2022-12-02) 592 | 593 | 594 | ### Bug Fixes 595 | 596 | * **deps:** update dependency next to v13.0.6 ([#862](https://github.com/newhighsco/next-plugin-svgr/issues/862)) ([8b17803](https://github.com/newhighsco/next-plugin-svgr/commit/8b17803578e0bf7b7d6c3657524fb7abd9622273)) 597 | 598 | ## [3.0.71](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.70...v3.0.71) (2022-11-24) 599 | 600 | 601 | ### Bug Fixes 602 | 603 | * **deps:** update dependency next to v13.0.5 ([#859](https://github.com/newhighsco/next-plugin-svgr/issues/859)) ([d9a27b1](https://github.com/newhighsco/next-plugin-svgr/commit/d9a27b1c9566fc7a5eafc1caa70963178069d305)) 604 | 605 | ## [3.0.70](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.69...v3.0.70) (2022-11-18) 606 | 607 | 608 | ### Bug Fixes 609 | 610 | * **deps:** update dependency next to v13.0.4 ([#851](https://github.com/newhighsco/next-plugin-svgr/issues/851)) ([0b6294d](https://github.com/newhighsco/next-plugin-svgr/commit/0b6294da523fb320b4f8bb60dbb35b51646fbfbb)) 611 | 612 | ## [3.0.69](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.68...v3.0.69) (2022-11-11) 613 | 614 | 615 | ### Bug Fixes 616 | 617 | * **deps:** update dependency next to v13.0.3 ([#848](https://github.com/newhighsco/next-plugin-svgr/issues/848)) ([56a563e](https://github.com/newhighsco/next-plugin-svgr/commit/56a563e6482710cd6ae864a9000e1a6d4076518b)) 618 | 619 | ## [3.0.68](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.67...v3.0.68) (2022-11-04) 620 | 621 | 622 | ### Bug Fixes 623 | 624 | * **deps:** update dependency next to v13.0.2 ([#837](https://github.com/newhighsco/next-plugin-svgr/issues/837)) ([7335736](https://github.com/newhighsco/next-plugin-svgr/commit/7335736661c94ccdd83edca16dbb627aa635a7b0)) 625 | 626 | ## [3.0.67](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.66...v3.0.67) (2022-11-01) 627 | 628 | 629 | ### Bug Fixes 630 | 631 | * **deps:** update dependency next to v13.0.1 ([#835](https://github.com/newhighsco/next-plugin-svgr/issues/835)) ([63ae6a3](https://github.com/newhighsco/next-plugin-svgr/commit/63ae6a39c9da3b1be65afbae448e3c94e9776f4b)) 632 | 633 | ## [3.0.66](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.65...v3.0.66) (2022-10-28) 634 | 635 | 636 | ### Bug Fixes 637 | 638 | * **deps:** update dependency @svgr/webpack to v6.5.1 ([#830](https://github.com/newhighsco/next-plugin-svgr/issues/830)) ([3a1ac72](https://github.com/newhighsco/next-plugin-svgr/commit/3a1ac72381441c3b74f0fb8aa343349cfe9d6ff9)) 639 | 640 | ## [3.0.65](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.64...v3.0.65) (2022-10-27) 641 | 642 | 643 | ### Bug Fixes 644 | 645 | * **deps:** update dependency next to v13 ([#829](https://github.com/newhighsco/next-plugin-svgr/issues/829)) ([115338f](https://github.com/newhighsco/next-plugin-svgr/commit/115338fc40a59b5375bfabadda5fc398bb3438d5)) 646 | 647 | ## [3.0.64](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.63...v3.0.64) (2022-10-27) 648 | 649 | 650 | ### Bug Fixes 651 | 652 | * handle undefined `assetPrefix` ([dfd7ad6](https://github.com/newhighsco/next-plugin-svgr/commit/dfd7ad690ba11164aca9d8a541d5bcb8b284c263)) 653 | * prevent further invalid config warnings ([7c2ad3e](https://github.com/newhighsco/next-plugin-svgr/commit/7c2ad3e36957ba0a7334109430e636adebc2ab16)) 654 | 655 | ## [3.0.63](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.62...v3.0.63) (2022-10-14) 656 | 657 | 658 | ### Bug Fixes 659 | 660 | * **deps:** update dependency @svgr/webpack to v6.5.0 ([#819](https://github.com/newhighsco/next-plugin-svgr/issues/819)) ([b203831](https://github.com/newhighsco/next-plugin-svgr/commit/b20383179462ecb1d844ba173eee61851f3d38cf)) 661 | 662 | ## [3.0.62](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.61...v3.0.62) (2022-10-12) 663 | 664 | 665 | ### Bug Fixes 666 | 667 | * prevent invalid config warnings ([#814](https://github.com/newhighsco/next-plugin-svgr/issues/814)) ([f565cd0](https://github.com/newhighsco/next-plugin-svgr/commit/f565cd09ab36dc4b2d4ef83650bcba5323f2f256)), closes [#759](https://github.com/newhighsco/next-plugin-svgr/issues/759) 668 | 669 | ## [3.0.61](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.60...v3.0.61) (2022-10-01) 670 | 671 | 672 | ### Bug Fixes 673 | 674 | * **deps:** update dependency @svgr/webpack to v6.4.0 ([#806](https://github.com/newhighsco/next-plugin-svgr/issues/806)) ([9c2665f](https://github.com/newhighsco/next-plugin-svgr/commit/9c2665f0d2becd53473195ebf32ceef86e7a3d73)) 675 | 676 | ## [3.0.60](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.59...v3.0.60) (2022-09-20) 677 | 678 | 679 | ### Bug Fixes 680 | 681 | * **deps:** update dependency next to v12.3.1 ([#797](https://github.com/newhighsco/next-plugin-svgr/issues/797)) ([04aaffc](https://github.com/newhighsco/next-plugin-svgr/commit/04aaffc4735b3334f2a14e6ca99a851ee6b1a61e)) 682 | 683 | ## [3.0.59](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.58...v3.0.59) (2022-09-08) 684 | 685 | 686 | ### Bug Fixes 687 | 688 | * **deps:** update dependency next to v12.3.0 ([#788](https://github.com/newhighsco/next-plugin-svgr/issues/788)) ([643ee2c](https://github.com/newhighsco/next-plugin-svgr/commit/643ee2c993a434b3bc35fc207fa369a8d15cdbb2)) 689 | 690 | ## [3.0.58](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.57...v3.0.58) (2022-08-12) 691 | 692 | 693 | ### Bug Fixes 694 | 695 | * **deps:** update dependency next to v12.2.5 ([#760](https://github.com/newhighsco/next-plugin-svgr/issues/760)) ([dbc9db5](https://github.com/newhighsco/next-plugin-svgr/commit/dbc9db59c55268c2d07a4c86d46b51f2902d1285)) 696 | 697 | ## [3.0.57](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.56...v3.0.57) (2022-08-04) 698 | 699 | 700 | ### Bug Fixes 701 | 702 | * **deps:** update dependency next to v12.2.4 ([#757](https://github.com/newhighsco/next-plugin-svgr/issues/757)) ([0d864ae](https://github.com/newhighsco/next-plugin-svgr/commit/0d864aeaa8edc31e41f950fd7e60e14e76e93ddf)) 703 | 704 | ## [3.0.56](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.55...v3.0.56) (2022-07-22) 705 | 706 | 707 | ### Bug Fixes 708 | 709 | * **deps:** update dependency @svgr/webpack to v6.3.1 ([#751](https://github.com/newhighsco/next-plugin-svgr/issues/751)) ([4faa0cc](https://github.com/newhighsco/next-plugin-svgr/commit/4faa0cc6ea1ce113488a3106d5df505fc9817813)) 710 | 711 | ## [3.0.55](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.54...v3.0.55) (2022-07-22) 712 | 713 | 714 | ### Bug Fixes 715 | 716 | * **deps:** update dependency next to v12.2.3 ([#750](https://github.com/newhighsco/next-plugin-svgr/issues/750)) ([d3741c1](https://github.com/newhighsco/next-plugin-svgr/commit/d3741c177c614e9a40cb7930b3942089dfe6e7b1)) 717 | 718 | ## [3.0.54](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.53...v3.0.54) (2022-07-19) 719 | 720 | 721 | ### Bug Fixes 722 | 723 | * **deps:** update dependency @svgr/webpack to v6.3.0 ([#747](https://github.com/newhighsco/next-plugin-svgr/issues/747)) ([7451781](https://github.com/newhighsco/next-plugin-svgr/commit/7451781d101e9b44f877dfc6bed7af3902bb14d0)) 724 | 725 | ## [3.0.53](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.52...v3.0.53) (2022-07-09) 726 | 727 | 728 | ### Bug Fixes 729 | 730 | * **deps:** update dependency next to v12.2.2 ([#741](https://github.com/newhighsco/next-plugin-svgr/issues/741)) ([7bbed4f](https://github.com/newhighsco/next-plugin-svgr/commit/7bbed4f009ef183e8fb72938897cf6a6a1b28beb)) 731 | 732 | ## [3.0.52](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.51...v3.0.52) (2022-07-08) 733 | 734 | 735 | ### Bug Fixes 736 | 737 | * **deps:** update dependency next to v12.2.1 ([#738](https://github.com/newhighsco/next-plugin-svgr/issues/738)) ([c4458ce](https://github.com/newhighsco/next-plugin-svgr/commit/c4458ce0106a20c8e341a00830983b1ca7aa7a3e)) 738 | 739 | ## [3.0.51](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.50...v3.0.51) (2022-06-28) 740 | 741 | 742 | ### Bug Fixes 743 | 744 | * **deps:** update dependency next to v12.2.0 ([#729](https://github.com/newhighsco/next-plugin-svgr/issues/729)) ([d67943b](https://github.com/newhighsco/next-plugin-svgr/commit/d67943b2d2d984cc37d1b58b715d20113cf72483)) 745 | 746 | ## [3.0.50](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.49...v3.0.50) (2022-05-03) 747 | 748 | 749 | ### Bug Fixes 750 | 751 | * **deps:** update dependency next to v12.1.6 ([#682](https://github.com/newhighsco/next-plugin-svgr/issues/682)) ([de268ec](https://github.com/newhighsco/next-plugin-svgr/commit/de268ec7e28d7b4842c7f72671f807ad48fcb6fa)) 752 | 753 | ## [3.0.49](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.48...v3.0.49) (2022-04-13) 754 | 755 | 756 | ### Bug Fixes 757 | 758 | * **deps:** update dependency next to v12.1.5 ([#669](https://github.com/newhighsco/next-plugin-svgr/issues/669)) ([76f17c7](https://github.com/newhighsco/next-plugin-svgr/commit/76f17c7c0448098dbe58cd5bf7769e094b5f7a1b)) 759 | 760 | ## [3.0.48](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.47...v3.0.48) (2022-03-31) 761 | 762 | 763 | ### Bug Fixes 764 | 765 | * **deps:** update dependency next to v12.1.4 ([#659](https://github.com/newhighsco/next-plugin-svgr/issues/659)) ([dc04959](https://github.com/newhighsco/next-plugin-svgr/commit/dc04959830b3093347a8161dacb841edc629f630)) 766 | 767 | ## [3.0.47](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.46...v3.0.47) (2022-03-31) 768 | 769 | 770 | ### Bug Fixes 771 | 772 | * **deps:** update dependency next to v12.1.3 ([#657](https://github.com/newhighsco/next-plugin-svgr/issues/657)) ([89c6a15](https://github.com/newhighsco/next-plugin-svgr/commit/89c6a157229732636eebbdaa4afbd1d40b473fe5)) 773 | 774 | ## [3.0.46](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.45...v3.0.46) (2022-03-29) 775 | 776 | 777 | ### Bug Fixes 778 | 779 | * **deps:** update dependency next to v12.1.2 ([#654](https://github.com/newhighsco/next-plugin-svgr/issues/654)) ([b16cddf](https://github.com/newhighsco/next-plugin-svgr/commit/b16cddf2f422827959efe4f9e0d5e02807faeaec)) 780 | 781 | ## [3.0.45](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.44...v3.0.45) (2022-03-25) 782 | 783 | 784 | ### Bug Fixes 785 | 786 | * **deps:** update dependency next to v12.1.1 ([#651](https://github.com/newhighsco/next-plugin-svgr/issues/651)) ([77eaf04](https://github.com/newhighsco/next-plugin-svgr/commit/77eaf04c0773c38cbaefb3e7333d24df70a77351)) 787 | 788 | ## [3.0.44](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.43...v3.0.44) (2022-02-17) 789 | 790 | 791 | ### Bug Fixes 792 | 793 | * **deps:** update dependency next to v12.1.0 ([#624](https://github.com/newhighsco/next-plugin-svgr/issues/624)) ([430caf1](https://github.com/newhighsco/next-plugin-svgr/commit/430caf11c839980f68878e9fe00d2c47d9cefa88)) 794 | 795 | ## [3.0.43](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.42...v3.0.43) (2022-02-01) 796 | 797 | 798 | ### Bug Fixes 799 | 800 | * **deps:** update dependency next to v12.0.10 ([#606](https://github.com/newhighsco/next-plugin-svgr/issues/606)) ([bd2feb6](https://github.com/newhighsco/next-plugin-svgr/commit/bd2feb645ea02da62448ab2e364c6806013f118b)) 801 | 802 | ## [3.0.42](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.41...v3.0.42) (2022-01-30) 803 | 804 | 805 | ### Bug Fixes 806 | 807 | * **deps:** update dependency @svgr/webpack to v6.2.1 ([#605](https://github.com/newhighsco/next-plugin-svgr/issues/605)) ([63b5dc2](https://github.com/newhighsco/next-plugin-svgr/commit/63b5dc2fc55a62b656396131484da945c28e87b5)) 808 | 809 | ## [3.0.41](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.40...v3.0.41) (2022-01-27) 810 | 811 | 812 | ### Bug Fixes 813 | 814 | * **deps:** update dependency next to v12.0.9 ([#602](https://github.com/newhighsco/next-plugin-svgr/issues/602)) ([f3b4292](https://github.com/newhighsco/next-plugin-svgr/commit/f3b42928888900153a0f9d1be6064d5f81f7b1e4)) 815 | 816 | ## [3.0.40](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.39...v3.0.40) (2022-01-12) 817 | 818 | 819 | ### Bug Fixes 820 | 821 | * **deps:** update dependency next to v12.0.8 ([#587](https://github.com/newhighsco/next-plugin-svgr/issues/587)) ([b9f50c0](https://github.com/newhighsco/next-plugin-svgr/commit/b9f50c0ece4c1bd78467bb55a5917059f9c55141)) 822 | 823 | ## [3.0.39](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.38...v3.0.39) (2022-01-10) 824 | 825 | 826 | ### Bug Fixes 827 | 828 | * **deps:** update dependency @svgr/webpack to v6.2.0 ([#584](https://github.com/newhighsco/next-plugin-svgr/issues/584)) ([6e1856d](https://github.com/newhighsco/next-plugin-svgr/commit/6e1856dc67a6107ac5444b160330f5875841ab43)) 829 | 830 | ## [3.0.38](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.37...v3.0.38) (2021-12-12) 831 | 832 | 833 | ### Bug Fixes 834 | 835 | * **deps:** update dependency @svgr/webpack to v6.1.2 ([#566](https://github.com/newhighsco/next-plugin-svgr/issues/566)) ([c703709](https://github.com/newhighsco/next-plugin-svgr/commit/c703709ba98148f57dabf5936d8766f70d5ccd4e)) 836 | 837 | ## [3.0.37](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.36...v3.0.37) (2021-12-05) 838 | 839 | 840 | ### Bug Fixes 841 | 842 | * **deps:** update dependency next to v12.0.7 ([#559](https://github.com/newhighsco/next-plugin-svgr/issues/559)) ([0aa0f40](https://github.com/newhighsco/next-plugin-svgr/commit/0aa0f4061e71065fbabc26833f6581338f822f98)) 843 | 844 | ## [3.0.36](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.35...v3.0.36) (2021-12-04) 845 | 846 | 847 | ### Bug Fixes 848 | 849 | * **deps:** update dependency @svgr/webpack to v6.1.1 ([#561](https://github.com/newhighsco/next-plugin-svgr/issues/561)) ([77454dc](https://github.com/newhighsco/next-plugin-svgr/commit/77454dce984378172dd457afdce9e438666d776d)) 850 | 851 | ## [3.0.35](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.34...v3.0.35) (2021-12-04) 852 | 853 | 854 | ### Bug Fixes 855 | 856 | * **deps:** update dependency next to v12.0.5 ([#555](https://github.com/newhighsco/next-plugin-svgr/issues/555)) ([97006d4](https://github.com/newhighsco/next-plugin-svgr/commit/97006d471f063b9259048749a3fd8795d88879fb)) 857 | 858 | ## [3.0.34](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.33...v3.0.34) (2021-12-02) 859 | 860 | 861 | ### Bug Fixes 862 | 863 | * **deps:** update dependency @svgr/webpack to v6.1.0 ([#553](https://github.com/newhighsco/next-plugin-svgr/issues/553)) ([2690ab7](https://github.com/newhighsco/next-plugin-svgr/commit/2690ab70c7caf957afa711fde9a6f16b2bf347ff)) 864 | 865 | ## [3.0.33](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.32...v3.0.33) (2021-12-01) 866 | 867 | 868 | ### Bug Fixes 869 | 870 | * **deps:** update dependency @svgr/webpack to v6 ([#547](https://github.com/newhighsco/next-plugin-svgr/issues/547)) ([e5114ad](https://github.com/newhighsco/next-plugin-svgr/commit/e5114ade04eb9d5783560a78bbd0fccc64a0ab97)) 871 | 872 | ## [3.0.32](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.31...v3.0.32) (2021-11-16) 873 | 874 | 875 | ### Bug Fixes 876 | 877 | * **deps:** update dependency next to v12.0.4 ([#534](https://github.com/newhighsco/next-plugin-svgr/issues/534)) ([96080f4](https://github.com/newhighsco/next-plugin-svgr/commit/96080f471ca88fd1438e112275021dd6dc03a630)) 878 | 879 | ## [3.0.31](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.30...v3.0.31) (2021-11-05) 880 | 881 | 882 | ### Bug Fixes 883 | 884 | * **deps:** update dependency next to v12.0.3 ([#528](https://github.com/newhighsco/next-plugin-svgr/issues/528)) ([463a18a](https://github.com/newhighsco/next-plugin-svgr/commit/463a18ab270420d24d5e562e06071054a78244bd)) 885 | 886 | ## [3.0.30](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.29...v3.0.30) (2021-10-31) 887 | 888 | 889 | ### Bug Fixes 890 | 891 | * **deps:** update dependency next to v12.0.2 ([#523](https://github.com/newhighsco/next-plugin-svgr/issues/523)) ([df82378](https://github.com/newhighsco/next-plugin-svgr/commit/df82378296db28f1441746f3cd22405a11697a68)) 892 | 893 | ## [3.0.29](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.28...v3.0.29) (2021-10-27) 894 | 895 | 896 | ### Bug Fixes 897 | 898 | * **deps:** update dependency next to v12 ([#518](https://github.com/newhighsco/next-plugin-svgr/issues/518)) ([2591857](https://github.com/newhighsco/next-plugin-svgr/commit/25918577b05d538516f32d887439c40fe517b1dd)) 899 | 900 | ## [3.0.28](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.27...v3.0.28) (2021-10-07) 901 | 902 | 903 | ### Bug Fixes 904 | 905 | * **url-loader:** adjust paths to match Next image loaders ([6d8d5ff](https://github.com/newhighsco/next-plugin-svgr/commit/6d8d5ff306630650012e327a84a2ccd1d8678e28)) 906 | 907 | ## [3.0.27](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.26...v3.0.27) (2021-08-31) 908 | 909 | 910 | ### Bug Fixes 911 | 912 | * **deps:** update dependency next to v11.1.2 ([#456](https://github.com/newhighsco/next-plugin-svgr/issues/456)) ([c090e66](https://github.com/newhighsco/next-plugin-svgr/commit/c090e66f41af25c2ca983811fa5fc8d600e5227b)) 913 | 914 | ## [3.0.26](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.25...v3.0.26) (2021-08-30) 915 | 916 | 917 | ### Bug Fixes 918 | 919 | * **deps:** update dependency next to v11.1.1 ([#455](https://github.com/newhighsco/next-plugin-svgr/issues/455)) ([2f00eda](https://github.com/newhighsco/next-plugin-svgr/commit/2f00edaf9eb3278a875bce75e88f984644fe8314)) 920 | 921 | ## [3.0.25](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.24...v3.0.25) (2021-08-11) 922 | 923 | 924 | ### Bug Fixes 925 | 926 | * **deps:** update dependency next to v11.1.0 ([#436](https://github.com/newhighsco/next-plugin-svgr/issues/436)) ([7fd1917](https://github.com/newhighsco/next-plugin-svgr/commit/7fd1917730d6b4f89b9cd908f0c4780f107262c2)) 927 | 928 | ## [3.0.24](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.23...v3.0.24) (2021-06-23) 929 | 930 | 931 | ### Bug Fixes 932 | 933 | * **deps:** update dependency next to v11 ([#396](https://github.com/newhighsco/next-plugin-svgr/issues/396)) ([eff8a20](https://github.com/newhighsco/next-plugin-svgr/commit/eff8a20b00a971ff1f60bca5d5deb0cd982edc5e)) 934 | 935 | ## [3.0.23](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.22...v3.0.23) (2021-05-24) 936 | 937 | 938 | ### Bug Fixes 939 | 940 | * **deps:** update dependency next to v10.2.3 ([#370](https://github.com/newhighsco/next-plugin-svgr/issues/370)) ([e013e62](https://github.com/newhighsco/next-plugin-svgr/commit/e013e626774b078027a3127e458626c5dfa74050)) 941 | 942 | ## [3.0.22](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.21...v3.0.22) (2021-05-20) 943 | 944 | 945 | ### Bug Fixes 946 | 947 | * **deps:** update dependency next to v10.2.2 ([#366](https://github.com/newhighsco/next-plugin-svgr/issues/366)) ([0328bc1](https://github.com/newhighsco/next-plugin-svgr/commit/0328bc11a82f2d52bdfc817b3319a0a5bf939301)) 948 | 949 | ## [3.0.21](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.20...v3.0.21) (2021-05-19) 950 | 951 | 952 | ### Bug Fixes 953 | 954 | * **deps:** update dependency next to v10.2.1 ([#365](https://github.com/newhighsco/next-plugin-svgr/issues/365)) ([1aa8052](https://github.com/newhighsco/next-plugin-svgr/commit/1aa80525cfc982443f7f6798a4f1c6fec7f80b7e)) 955 | 956 | ## [3.0.20](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.19...v3.0.20) (2021-04-28) 957 | 958 | 959 | ### Bug Fixes 960 | 961 | * **deps:** update dependency next to v10.2.0 ([#340](https://github.com/newhighsco/next-plugin-svgr/issues/340)) ([7593039](https://github.com/newhighsco/next-plugin-svgr/commit/7593039828c1f6b9fcb81bbca105e3b22a88ef43)) 962 | 963 | ## [3.0.19](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.18...v3.0.19) (2021-04-02) 964 | 965 | 966 | ### Bug Fixes 967 | 968 | * **deps:** update dependency next to v10.1.3 ([#323](https://github.com/newhighsco/next-plugin-svgr/issues/323)) ([14b0938](https://github.com/newhighsco/next-plugin-svgr/commit/14b0938d792bd1dc459893507eca75296ca19abd)) 969 | 970 | ## [3.0.18](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.17...v3.0.18) (2021-03-30) 971 | 972 | 973 | ### Bug Fixes 974 | 975 | * **deps:** update dependency next to v10.1.2 ([#318](https://github.com/newhighsco/next-plugin-svgr/issues/318)) ([e5b2374](https://github.com/newhighsco/next-plugin-svgr/commit/e5b23747c09e56e4fdb4bdc0db3956c0be238c6d)) 976 | 977 | ## [3.0.17](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.16...v3.0.17) (2021-03-16) 978 | 979 | 980 | ### Bug Fixes 981 | 982 | * **deps:** update dependency next to v10.0.9 ([#306](https://github.com/newhighsco/next-plugin-svgr/issues/306)) ([f91f811](https://github.com/newhighsco/next-plugin-svgr/commit/f91f811a86c51121a474ad2b1bc95240ad5d0bc7)) 983 | 984 | ## [3.0.16](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.15...v3.0.16) (2021-03-05) 985 | 986 | 987 | ### Bug Fixes 988 | 989 | * **deps:** update dependency next to v10.0.8 ([#298](https://github.com/newhighsco/next-plugin-svgr/issues/298)) ([2613bb6](https://github.com/newhighsco/next-plugin-svgr/commit/2613bb63e6c09f3fdc6bf3e5b620b5eff0bdc6e0)) 990 | 991 | ## [3.0.15](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.14...v3.0.15) (2021-02-16) 992 | 993 | 994 | ### Bug Fixes 995 | 996 | * **deps:** update dependency next to v10.0.7 ([#275](https://github.com/newhighsco/next-plugin-svgr/issues/275)) ([c96bf49](https://github.com/newhighsco/next-plugin-svgr/commit/c96bf498e4e179aadb6ad996aec8771a6d3d88a6)) 997 | 998 | ## [3.0.14](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.13...v3.0.14) (2021-01-30) 999 | 1000 | 1001 | ### Bug Fixes 1002 | 1003 | * **deps:** update dependency next to v10.0.6 ([#261](https://github.com/newhighsco/next-plugin-svgr/issues/261)) ([ab73123](https://github.com/newhighsco/next-plugin-svgr/commit/ab731239efe144763d66714aaca7ec34f58ec900)) 1004 | 1005 | ## [3.0.13](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.12...v3.0.13) (2021-01-07) 1006 | 1007 | 1008 | ### Bug Fixes 1009 | 1010 | * **deps:** update dependency next to v10.0.5 ([#243](https://github.com/newhighsco/next-plugin-svgr/issues/243)) ([f22964b](https://github.com/newhighsco/next-plugin-svgr/commit/f22964bfc87c782895fe8a9e396d01a4237c1732)) 1011 | 1012 | ## [3.0.12](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.11...v3.0.12) (2020-12-22) 1013 | 1014 | 1015 | ### Bug Fixes 1016 | 1017 | * **deps:** update dependency next to v10.0.4 ([#234](https://github.com/newhighsco/next-plugin-svgr/issues/234)) ([75ca139](https://github.com/newhighsco/next-plugin-svgr/commit/75ca13965c9e231cdc918f3a8afb6dfc7a4c5a52)) 1018 | 1019 | ## [3.0.11](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.10...v3.0.11) (2020-11-24) 1020 | 1021 | 1022 | ### Bug Fixes 1023 | 1024 | * **deps:** update dependency next to v10.0.3 ([b998fe6](https://github.com/newhighsco/next-plugin-svgr/commit/b998fe6c613073b3858cffaee59f7f6ca8611a9d)) 1025 | 1026 | ## [3.0.10](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.9...v3.0.10) (2020-11-18) 1027 | 1028 | 1029 | ### Bug Fixes 1030 | 1031 | * **deps:** update dependency next to v10.0.2 ([fb8a8f2](https://github.com/newhighsco/next-plugin-svgr/commit/fb8a8f2bc17f02c5cfaa76be6a30b3d046aa8e0e)) 1032 | 1033 | ## [3.0.9](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.8...v3.0.9) (2020-11-15) 1034 | 1035 | 1036 | ### Bug Fixes 1037 | 1038 | * **deps:** update dependency @svgr/webpack to v5.5.0 ([62a4a0c](https://github.com/newhighsco/next-plugin-svgr/commit/62a4a0c50c0cf454d269b493d4f815cc0a3e19db)) 1039 | 1040 | ## [3.0.8](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.7...v3.0.8) (2020-11-03) 1041 | 1042 | 1043 | ### Bug Fixes 1044 | 1045 | * **deps:** update dependency next to v10.0.1 ([943797e](https://github.com/newhighsco/next-plugin-svgr/commit/943797e2f14e1113ad48e758e83c1421edcbde02)) 1046 | 1047 | ## [3.0.7](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.6...v3.0.7) (2020-10-30) 1048 | 1049 | 1050 | ### Bug Fixes 1051 | 1052 | * **deps:** update dependency next to v10 ([d66845c](https://github.com/newhighsco/next-plugin-svgr/commit/d66845cf6511b158eab11a3e53b194766b3f8359)) 1053 | 1054 | ## [3.0.6](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.5...v3.0.6) (2020-10-27) 1055 | 1056 | 1057 | ### Bug Fixes 1058 | 1059 | * **deps:** update dependency file-loader to v6.2.0 ([fdbc0cc](https://github.com/newhighsco/next-plugin-svgr/commit/fdbc0cc83907cd606ae6069d2232236f179a2cb9)) 1060 | 1061 | ## [3.0.5](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.4...v3.0.5) (2020-10-10) 1062 | 1063 | 1064 | ### Bug Fixes 1065 | 1066 | * **deps:** update dependency next to v9.5.5 ([5ec5246](https://github.com/newhighsco/next-plugin-svgr/commit/5ec5246428e71d0b3fe27ee9433c032fc174cfc2)) 1067 | 1068 | ## [3.0.4](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.3...v3.0.4) (2020-10-09) 1069 | 1070 | 1071 | ### Bug Fixes 1072 | 1073 | * **deps:** update dependency url-loader to v4.1.1 ([d43101f](https://github.com/newhighsco/next-plugin-svgr/commit/d43101f887346903bec569902e478e495c19a481)) 1074 | 1075 | ## [3.0.3](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.2...v3.0.3) (2020-10-09) 1076 | 1077 | 1078 | ### Bug Fixes 1079 | 1080 | * **deps:** update dependency file-loader to v6.1.1 ([1bdf3fb](https://github.com/newhighsco/next-plugin-svgr/commit/1bdf3fbada18ab28e88d557e0a785353f2ed4895)) 1081 | 1082 | ## [3.0.2](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.1...v3.0.2) (2020-10-07) 1083 | 1084 | 1085 | ### Bug Fixes 1086 | 1087 | * **deps:** update dependency next to v9.5.4 ([3f1eef2](https://github.com/newhighsco/next-plugin-svgr/commit/3f1eef21b2ec1553336b389ef6641beafae7cddc)) 1088 | 1089 | ## [3.0.1](https://github.com/newhighsco/next-plugin-svgr/compare/v3.0.0...v3.0.1) (2020-09-01) 1090 | 1091 | 1092 | ### Bug Fixes 1093 | 1094 | * **deps:** update dependency next to v9.5.3 ([78526da](https://github.com/newhighsco/next-plugin-svgr/commit/78526dabc23386b10f23d2b37ac38a3aa2df49e5)) 1095 | 1096 | # [3.0.0](https://github.com/newhighsco/next-plugin-svgr/compare/v2.0.1...v3.0.0) (2020-09-01) 1097 | 1098 | 1099 | ### Features 1100 | 1101 | * **webpack:** emulates `@svgr/webpack` url-loader usage ([58dc67e](https://github.com/newhighsco/next-plugin-svgr/commit/58dc67e3afa525ae2ec0d71f0bc456d99dfba0c6)), closes [#99](https://github.com/newhighsco/next-plugin-svgr/issues/99) 1102 | 1103 | 1104 | ### BREAKING CHANGES 1105 | 1106 | * **webpack:** removes undocumented `*.url.svg` in favour of expected url-loader usage documented at https://react-svgr.com/docs/webpack/#using-with-url-loader-or-file-loader 1107 | 1108 | ## [2.0.1](https://github.com/newhighsco/next-plugin-svgr/compare/v2.0.0...v2.0.1) (2020-08-31) 1109 | 1110 | 1111 | ### Bug Fixes 1112 | 1113 | * **deps:** update dependency file-loader to v6.1.0 ([dcdd7d2](https://github.com/newhighsco/next-plugin-svgr/commit/dcdd7d275dd85f21f48fc8db70bda75d14ade002)) 1114 | 1115 | # [2.0.0](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.5...v2.0.0) (2020-08-20) 1116 | 1117 | 1118 | ### Features 1119 | 1120 | * correctly passes `svgrOptions` to `@svgr/webpack` loader ([ae5b910](https://github.com/newhighsco/next-plugin-svgr/commit/ae5b91051e9f7a6bc68fd21ff4a9cb961479571e)) 1121 | 1122 | 1123 | ### BREAKING CHANGES 1124 | 1125 | * previous implementation was not compatible with `next-compose-plugin` 1126 | 1127 | ## [1.0.5](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.4...v1.0.5) (2020-08-11) 1128 | 1129 | 1130 | ### Bug Fixes 1131 | 1132 | * **deps:** update dependency next to v9.5.2 ([ae8a9d6](https://github.com/newhighsco/next-plugin-svgr/commit/ae8a9d6932f984a906c78f161a5435565d52d196)) 1133 | 1134 | ## [1.0.4](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.3...v1.0.4) (2020-07-30) 1135 | 1136 | 1137 | ### Bug Fixes 1138 | 1139 | * **deps:** update dependency next to v9.5.1 ([d2efca2](https://github.com/newhighsco/next-plugin-svgr/commit/d2efca2663d2c8f0aec0e2f0199d50fba1584b81)) 1140 | 1141 | ## [1.0.3](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.2...v1.0.3) (2020-07-29) 1142 | 1143 | 1144 | ### Bug Fixes 1145 | 1146 | * bump version with Next updates ([1527e7d](https://github.com/newhighsco/next-plugin-svgr/commit/1527e7d8e886f638157c4cfe4f6f36d212c8c153)) 1147 | 1148 | ## [1.0.2](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.1...v1.0.2) (2020-04-27) 1149 | 1150 | 1151 | ### Bug Fixes 1152 | 1153 | * **deps:** update dependency @svgr/webpack to v5.4.0 ([6a9074e](https://github.com/newhighsco/next-plugin-svgr/commit/6a9074eff16d37d46aac0cd69a69940d5875dea8)) 1154 | 1155 | ## [1.0.1](https://github.com/newhighsco/next-plugin-svgr/compare/v1.0.0...v1.0.1) (2020-04-27) 1156 | 1157 | # 1.0.0 (2020-04-14) 1158 | 1159 | 1160 | ### Bug Fixes 1161 | 1162 | * **docs:** updates README ([265f279](https://github.com/newhighsco/next-plugin-svgr/commit/265f279df5bce190e390976ed535880c62483a7a)) 1163 | 1164 | 1165 | ### Features 1166 | 1167 | * initial release ([fb982df](https://github.com/newhighsco/next-plugin-svgr/commit/fb982df80c8db97d8fff70ef68424e8262181de6)) 1168 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # next-plugin-svgr [![NPM version](https://img.shields.io/npm/v/@newhighsco/next-plugin-svgr.svg)](https://www.npmjs.com/package/@newhighsco/next-plugin-svgr) 2 | 3 | [Next.js](https://nextjs.org/) plugin for transforming SVGs into React components using [SVGR](https://react-svgr.com/) 4 | 5 | ## Installation 6 | 7 | Install Next.js and `@newhighsco/next-plugin-svgr`: 8 | 9 | ``` 10 | npm install --save next @newhighsco/next-plugin-svgr 11 | ``` 12 | 13 | ## Usage 14 | 15 | Create a `next.config.js` in your project: 16 | 17 | ```js 18 | // next.config.js 19 | const withSvgr = require('@newhighsco/next-plugin-svgr') 20 | module.exports = withSvgr({ 21 | svgrOptions: { 22 | /* config options here */ 23 | } 24 | }) 25 | ``` 26 | 27 | In your code: 28 | 29 | ```jsx 30 | import starUrl, { ReactComponent as Star } from './star.svg' 31 | 32 | const App = () => ( 33 | <> 34 | star 35 | 36 | 37 | ) 38 | ``` 39 | 40 | ## With TypeScript 41 | 42 | In your `next-env.d.ts` file (or in another type declaration file of your choosing that's within the `include` section of your `tsconfig.js`), simply add the following: 43 | 44 | ```tsx 45 | declare module '*.svg' { 46 | import { FC, SVGProps } from 'react'; 47 | export const ReactComponent: FC>; 48 | 49 | const src: string; 50 | export default src; 51 | } 52 | ``` 53 | 54 | This notifies the compiler of the 2 possible ways you're able to import and use SVG files with this plugin integrated. 55 | 56 | ## Options 57 | 58 | [See options supported by SVGR](https://react-svgr.com/docs/options/) 59 | 60 | ## [CHANGELOG](CHANGELOG.md) 61 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | '@babel/preset-env', 5 | { 6 | targets: { 7 | node: 'current' 8 | } 9 | } 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | coverageReporters: ['json', 'text-summary'], 3 | reporters: [ 4 | 'default', 5 | [ 6 | 'jest-junit', 7 | { 8 | addFileAttribute: 'true', 9 | outputDirectory: 'reports', 10 | outputName: 'jest.xml' 11 | } 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@newhighsco/next-plugin-svgr", 3 | "description": "Next.js plugin for transforming SVGs into React components using SVGR", 4 | "version": "3.0.157", 5 | "author": "New High Score", 6 | "license": "ISC", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/newhighsco/next-plugin-svgr.git" 10 | }, 11 | "homepage": "https://github.com/newhighsco/next-plugin-svgr#readme", 12 | "bugs": { 13 | "url": "https://github.com/newhighsco/next-plugin-svgr/issues" 14 | }, 15 | "main": "src/index.js", 16 | "files": [ 17 | "src/webpack.js" 18 | ], 19 | "scripts": { 20 | "prepare": "husky", 21 | "pretest": "yarn lint", 22 | "test": "jest --runInBand", 23 | "test:list": "jest --listTests", 24 | "lint": "concurrently yarn:lint:*", 25 | "lint:js": "eslint --cache --ignore-path .gitignore .", 26 | "format": "concurrently yarn:format:*", 27 | "format:js": "yarn lint:js --fix" 28 | }, 29 | "dependencies": { 30 | "@svgr/webpack": "8.1.0", 31 | "file-loader": "6.2.0", 32 | "url-loader": "4.1.1" 33 | }, 34 | "devDependencies": { 35 | "@babel/core": "7.27.4", 36 | "@babel/preset-env": "7.27.2", 37 | "@commitlint/cli": "19.8.1", 38 | "@newhighsco/commitlint-config": "1.1.46", 39 | "@newhighsco/editor-config": "1.2.0", 40 | "@newhighsco/eslint-config": "4.1.27", 41 | "@newhighsco/prettier-config": "2.1.32", 42 | "@newhighsco/release-config": "1.4.5", 43 | "babel-jest": "29.7.0", 44 | "concurrently": "9.1.2", 45 | "eslint": "8.57.1", 46 | "husky": "9.1.7", 47 | "jest": "29.7.0", 48 | "jest-junit": "16.0.0", 49 | "prettier": "3.5.3", 50 | "semantic-release": "24.2.5" 51 | }, 52 | "peerDependencies": { 53 | "next": "15.3.3" 54 | }, 55 | "commitlint": { 56 | "extends": [ 57 | "@newhighsco" 58 | ] 59 | }, 60 | "eslintConfig": { 61 | "extends": [ 62 | "@newhighsco" 63 | ] 64 | }, 65 | "prettier": "@newhighsco/prettier-config", 66 | "release": { 67 | "extends": "@newhighsco/release-config", 68 | "branches": [ 69 | "main" 70 | ] 71 | }, 72 | "renovate": { 73 | "extends": [ 74 | "local>newhighsco/.github:renovate-config" 75 | ] 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /src/__tests__/index.spec.js: -------------------------------------------------------------------------------- 1 | import withSvgr from '../index' 2 | 3 | describe('withSvgr', () => { 4 | it('should return webpack', () => { 5 | const nextConfig = withSvgr() 6 | 7 | expect(typeof nextConfig.webpack).toEqual('function') 8 | }) 9 | }) 10 | -------------------------------------------------------------------------------- /src/__tests__/webpack.spec.js: -------------------------------------------------------------------------------- 1 | import addSvgrLoaders from '../webpack' 2 | 3 | const mockConfig = () => ({ 4 | module: { 5 | rules: [] 6 | } 7 | }) 8 | 9 | const nextConfig = { 10 | webpack: jest.fn(config => config) 11 | } 12 | 13 | describe('addSvgrLoaders', () => { 14 | it('should add SVG loader', () => { 15 | const loader = addSvgrLoaders() 16 | const config = mockConfig() 17 | const webpackConfig = loader(config, {}) 18 | const [svgrLoader, urlLoader] = webpackConfig.module.rules[0].use 19 | 20 | expect(svgrLoader.options).toEqual(undefined) 21 | expect(urlLoader.options.publicPath).toEqual('/_next/static/image/') 22 | expect(urlLoader.options.outputPath).toEqual('static/image/') 23 | }) 24 | 25 | it('should set SVG loader options', () => { 26 | const loader = addSvgrLoaders({ 27 | svgrOptions: { svgoConfig: {} } 28 | }) 29 | const config = mockConfig() 30 | const webpackConfig = loader(config, {}) 31 | const [svgrLoader] = webpackConfig.module.rules[0].use 32 | 33 | expect(svgrLoader.options).toEqual({ 34 | svgoConfig: {} 35 | }) 36 | }) 37 | 38 | it('should set correct outputPath when running as server', () => { 39 | const loader = addSvgrLoaders() 40 | const config = mockConfig() 41 | const webpackConfig = loader(config, { isServer: true }) 42 | const [, urlLoader] = webpackConfig.module.rules[0].use 43 | 44 | expect(urlLoader.options.outputPath).toEqual('../static/image/') 45 | }) 46 | 47 | it('should pass config to nested webpack function', () => { 48 | const loader = addSvgrLoaders(nextConfig) 49 | const config = mockConfig() 50 | 51 | loader(config, {}) 52 | 53 | expect(nextConfig.webpack).toBeCalledWith(config, {}) 54 | }) 55 | }) 56 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const addSvgrLoaders = require('./webpack') 2 | 3 | module.exports = (nextConfig = {}) => { 4 | const { svgrOptions, inlineImageLimit, esModule, ...rest } = nextConfig 5 | return Object.assign({}, rest, { 6 | webpack: addSvgrLoaders(nextConfig) 7 | }) 8 | } 9 | -------------------------------------------------------------------------------- /src/webpack.js: -------------------------------------------------------------------------------- 1 | const svgRegExp = /\.svg$/ 2 | 3 | const svgrLoaders = ({ nextConfig, isServer }) => { 4 | const { 5 | svgrOptions, 6 | assetPrefix = '', 7 | inlineImageLimit, 8 | esModule 9 | } = nextConfig 10 | 11 | const svgrLoader = { 12 | loader: require.resolve('@svgr/webpack'), 13 | options: svgrOptions 14 | } 15 | 16 | const urlLoader = { 17 | loader: require.resolve('url-loader'), 18 | options: { 19 | limit: inlineImageLimit, 20 | fallback: require.resolve('file-loader'), 21 | publicPath: `${assetPrefix}/_next/static/image/`, 22 | outputPath: `${isServer ? '../' : ''}static/image/`, 23 | name: '[path][name].[hash].[ext]', 24 | esModule: esModule || false 25 | } 26 | } 27 | 28 | return { test: svgRegExp, use: [svgrLoader, urlLoader] } 29 | } 30 | 31 | module.exports = 32 | (nextConfig = {}) => 33 | (config, options) => { 34 | config.module.rules.push(svgrLoaders({ nextConfig, ...options })) 35 | 36 | if (typeof nextConfig.webpack === 'function') { 37 | return nextConfig.webpack(config, options) 38 | } 39 | 40 | return config 41 | } 42 | --------------------------------------------------------------------------------