TriaFly-atomic-styles Custom CSS/JS Framework for TriaFly BI System
The TriaFly UI Kit creates a CSS/JS framework for the TriaFly BI System project. To get started, use the GitHub template, where you can clone the project as a GitHub repository. Once the project is set up, install dependencies and run it in development mode:
cd my-app
npm install # or yarn
npm run dev
This will start the development server. Open it, click, and now you have a fully functional Sapper project! To begin development, refer to the bundler configuration. Sapper uses Rollup or Webpack for code splitting, dynamic imports, and compiling Svelte components. Using Webpack, it also provides hot module replacement. You can edit the configuration files to add any necessary plugins. For production mode and deployment, run:
npm run build && npm start
This disables live reloading and activates the appropriate bundler plugins for your production build.
评论区