1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-15 15:18:22 +09:00
cherrypick/webpack/module/rules/vue.ts

14 lines
176 B
TypeScript
Raw Normal View History

2018-02-10 10:27:05 +09:00
/**
* Vue
*/
export default () => ({
test: /\.vue$/,
exclude: /node_modules/,
2018-02-15 12:44:42 +09:00
loader: 'vue-loader',
options: {
cssSourceMap: false,
preserveWhitespace: false
}
2018-02-10 10:27:05 +09:00
});