forked from yassilah/laravel-nova-nested-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.js
executable file
·48 lines (40 loc) · 1.15 KB
/
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
const mix = require('laravel-mix')
const webpack = require('webpack')
const path = require('path')
class NovaExtension {
name() {
return 'nova-extension'
}
register(name) {
this.name = name
}
webpackPlugins() {
return new webpack.ProvidePlugin({
Errors: 'form-backend-validation',
})
}
webpackConfig(webpackConfig) {
webpackConfig.externals = {
vue: 'Vue',
}
webpackConfig.resolve.alias = {
...(webpackConfig.resolve.alias || {}),
'@': path.resolve(__dirname, './vendor/laravel/nova/resources/js/'),
'laravel-nova': path.join(__dirname, 'vendor/laravel/nova/resources/js/mixins/packages.js'),
}
webpackConfig.output = {
uniqueName: this.name,
}
}
}
mix.extend('nova', new NovaExtension())
// let mix = require('laravel-mix')
// let path = require('path')
//
// mix
// .js('resources/js/field.js', 'js')
// .vue({version: 3})
// .sourceMaps()
// .extract()
// .setPublicPath('dist')
// .alias({'@': path.join(__dirname, './vendor/laravel/nova/resources/js/')})