@4tw/cypress-drag-drop
Version:
A cypress child command for drag'n'drop support.
25 lines (23 loc) • 444 B
JavaScript
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
module: {
rules: [
// ... other rules
{
test: /\.vue$/,
loader: 'vue-loader',
},
{
test: /\.css$/,
use: ['vue-style-loader', 'css-loader'],
},
],
},
plugins: [
// make sure to include the plugin!
new VueLoaderPlugin(),
],
devServer: {
port: process.env.PORT1 || 8080,
},
}