Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.x] Add Inertia SSR Support #1012

Merged
merged 7 commits into from
Mar 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove not need imports on default inertia stack
  • Loading branch information
xiCO2k committed Mar 20, 2022
commit 7c000a27f19433285c5cfb14751d426980db4028
5 changes: 1 addition & 4 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,16 +289,13 @@ protected function installInertiaStack()
'@inertiajs/inertia' => '^0.11.0',
'@inertiajs/inertia-vue3' => '^0.6.0',
'@inertiajs/progress' => '^0.2.7',
'@inertiajs/server' => '^0.1.0',
'@tailwindcss/forms' => '^0.5.0',
'@tailwindcss/typography' => '^0.5.2',
'postcss-import' => '^14.0.2',
'tailwindcss' => '^3.0.0',
'vue' => '^3.2.31',
'@vue/compiler-sfc' => '^3.2.31',
'@vue/server-renderer' => '^3.2.31',
'vue-loader' => '^17.0.0',
'webpack-node-externals' => '^3.0.0'
] + $packages;
});

Expand Down Expand Up @@ -502,7 +499,7 @@ protected function installInertiaSsrStack()
return [
'@inertiajs/server' => '^0.1.0',
'@vue/server-renderer' => '^3.2.31',
'webpack-node-externals' => '^3.0.0'
'webpack-node-externals' => '^3.0.0',
] + $packages;
});

Expand Down