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