mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
_fix(webpack): remove absolute wanrning messge in css-loader (#8629)
This commit is contained in:
parent
1405968d89
commit
e2e604ea3b
@ -1,5 +1,4 @@
|
||||
import path from 'path'
|
||||
import consola from 'consola'
|
||||
import ExtractCssChunksPlugin from 'extract-css-chunks-webpack-plugin'
|
||||
|
||||
import { wrapArray } from '@nuxt/utils'
|
||||
@ -36,12 +35,7 @@ export default class StyleLoader {
|
||||
|
||||
isUrlResolvingEnabled (url, resourcePath) {
|
||||
// Ignore absolute URLs, it will be handled by serve-static.
|
||||
if (url.startsWith('/')) {
|
||||
consola.warn(`Please use relative path or alias path instead of absolute path ${url}`)
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
return !url.startsWith('/')
|
||||
}
|
||||
|
||||
normalize (loaders) {
|
||||
|
Loading…
Reference in New Issue
Block a user