mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
43 lines
1.3 KiB
JavaScript
43 lines
1.3 KiB
JavaScript
const postcssConfig = require('./postcss')
|
|
const styleLoader = require('./style-loader')
|
|
|
|
module.exports = function vueLoader({ isServer }) {
|
|
// https://vue-loader.vuejs.org/en
|
|
const config = {
|
|
postcss: postcssConfig.call(this),
|
|
extractCSS: !!this.options.build.extractCSS,
|
|
cssSourceMap: this.options.build.cssSourceMap,
|
|
preserveWhitespace: false,
|
|
loaders: {
|
|
js: {
|
|
loader: 'babel-loader',
|
|
options: this.getBabelOptions({ isServer })
|
|
},
|
|
// Note: do not nest the `postcss` option under `loaders`
|
|
css: styleLoader.call(this, 'css', [], true),
|
|
less: styleLoader.call(this, 'less', 'less-loader', true),
|
|
scss: styleLoader.call(this, 'scss', 'sass-loader', true),
|
|
sass: styleLoader.call(
|
|
this,
|
|
'sass',
|
|
{ loader: 'sass-loader', options: { indentedSyntax: true } },
|
|
true
|
|
),
|
|
stylus: styleLoader.call(this, 'stylus', 'stylus-loader', true),
|
|
styl: styleLoader.call(this, 'stylus', 'stylus-loader', true)
|
|
},
|
|
template: {
|
|
doctype: 'html' // For pug, see https://github.com/vuejs/vue-loader/issues/55
|
|
},
|
|
transformToRequire: {
|
|
video: 'src',
|
|
source: 'src',
|
|
object: 'src',
|
|
embed: 'src'
|
|
}
|
|
}
|
|
|
|
// Return the config
|
|
return config
|
|
}
|