【发布时间】:2019-04-04 09:30:17
【问题描述】:
我尝试在我的 vue 组件中导入我的 variables.stylus,但是当我使用 @import "~@themes/variables.stylus" 时,webpack 抛出错误:failed to locate @import file ~@themes/variables.stylus.styl
webpack 配置
alias: {
'vue$': 'vue/dist/vue.esm.js',
themes: path.resolve(__dirname, './src/themes'),
'@': resolve('src'),
}
{
test: /\.styl$/,
loader: ['style-loader', 'css-loader', 'autoprefixer-loader?browsers=last 5 version', 'stylus-loader']
}
【问题讨论】:
标签: javascript vue.js webpack import stylus