You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- web/app/themes/sage-theme/resources/views/layouts/app.blade.php --><h3>Vue should render the component here:</h3><app></app>
// Vue configuration: web/app/themes/sage-theme/resources/scripts/app.jscreateApp({// Every vue component has to be imported here in order to be available// in every template.components: {App}}).mount("#main");
Configure and run project
Copy .env.example to .env and add db connection details.
cp .env.example .env
Install composer dependencies
composer install
Install theme dependencies:
cd web/app/themes/sage-theme
composer install
yarn
Modify the domain at bud.config.js at line 3
Run the theme dev mode or production mode:
# Development mode
yarn dev
# Production mode:
yarn build