mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
19 lines
680 B
TypeScript
19 lines
680 B
TypeScript
// This is the Vite entry point of Philomena's clientside code.
|
|
// It is used as a sort of 'manifest' for what to include, and shouldn't
|
|
// have any code on its own.
|
|
//
|
|
// Only edit this file as described by the comment about CSS development below.
|
|
|
|
// Our code
|
|
import './ujs';
|
|
import './when-ready';
|
|
|
|
// When developing CSS, include the relevant CSS you're working on here
|
|
// in order to enable HMR (live reload) on it.
|
|
// Would typically be either the theme file, or any additional file
|
|
// you later intend to put in the <link> tag.
|
|
|
|
import '../css/application.css';
|
|
import '../css/themes/dark-blue.css';
|
|
// import '../css/themes/dark.scss';
|
|
// import '../css/themes/red.scss';
|