Skip to content

Commit f3a1634

Browse files
authored
Merge pull request #2 from ammarahm-ed/add-solidjs-store-alias
fix: add missing solid-js/store alias in webpack config
2 parents fa8ae50 + 64941f1 commit f3a1634

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nativescript.webpack.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ const solid = (config, env) => {
2323
'solid-js/universal',
2424
path.resolve(solidPath, `universal/dist/${env.production ? 'universal' : 'dev'}.js`)
2525
)
26+
.set(
27+
'solid-js/store',
28+
path.resolve(solidPath, `store/dist/${env.production ? 'store' : 'dev'}.js`)
29+
)
2630
.set(
2731
'solid-js',
2832
path.resolve(solidPath, `dist/${env.production ? 'solid' : 'dev'}.js`)

0 commit comments

Comments
 (0)