mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-24 06:35:10 +00:00
16 lines
431 B
JavaScript
Executable File
16 lines
431 B
JavaScript
Executable File
import ExtractTextPlugin from 'extract-text-webpack-plugin'
|
|
|
|
export function extractStyles () {
|
|
return !this.dev && this.options.build.extractCSS
|
|
}
|
|
|
|
export function styleLoader (ext, loader = []) {
|
|
if (extractStyles.call(this)) {
|
|
return ExtractTextPlugin.extract({
|
|
use: ['css-loader?minimize'].concat(loader),
|
|
fallback: 'vue-style-loader'
|
|
})
|
|
}
|
|
return ['vue-style-loader', 'css-loader'].concat(loader)
|
|
}
|