rsnext/test/integration/url-imports/next.config.js
Tobias Koppers 04e1e01f18
test, fix and document all possible import types for URL imports (#30165)
resolve absolute URLs in CSS when using urlImports
remove `[path]` from static static image output path
replace file-loader with asset module, remove file-loader
2021-10-25 01:54:16 +02:00

8 lines
157 B
JavaScript

module.exports = {
experimental: {
urlImports: [
'http://localhost:12345/',
'https://github.com/vercel/next.js/raw/canary/',
],
},
}