Я пытаюсь импортировать мой variables.stylus в свой компонент vue, но когда я использую @import "~@themes/variables.stylus"
, ошибка выброса веб-пакета: failed to locate @import file ~@themes/variables.stylus.styl
Webpack config
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']
}