forked from Flagstudio/nova-actions-left
-
Notifications
You must be signed in to change notification settings - Fork 2
/
nova.mix.js
54 lines (45 loc) · 1.1 KB
/
nova.mix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const mix = require('laravel-mix')
const webpack = require('webpack')
const path = require('path')
class NovaExtension {
name() {
return 'saintsystems/nova-actions-left'
}
register(name) {
this.name = name
}
webpackConfig(webpackConfig) {
webpackConfig.externals = {
vue: 'Vue',
'laravel-nova': 'LaravelNova',
'@/mixins': 'LaravelNova',
}
// webpackConfig.resolve.alias = {
// vue: '@vue/compat'
// }
// webpackConfig.module.rules = [
// {
// test: /\.vue$/,
// loader: 'vue-loader',
// options: {
// compilerOptions: {
// compatConfig: {
// MODE: 2
// }
// }
// }
// }
// ]
// webpackConfig.resolve.alias = {
// ...(webpackConfig.resolve.alias || {}),
// 'laravel-nova': path.join(
// __dirname,
// 'vendor/laravel/nova/resources/js/mixins/packages.js'
// ),
// }
webpackConfig.output = {
uniqueName: this.name,
}
}
}
mix.extend('nova', new NovaExtension())