Kumi
bcca11aab9
Migrated the SCSS import for the frontend directly into editor.js and userarea.js from frontend.js, removing redundancy by consolidating style imports. This adjustment enables more coherent management of SCSS files and removes the need for a separate frontend bundle. Consequently, frontend.js and its references in HTML templates were removed to clean up the codebase and simplify the asset pipeline. These changes should make future maintenance of CSS easier and improve load times by reducing unnecessary scripting and network requests.
8 lines
No EOL
235 B
JavaScript
8 lines
No EOL
235 B
JavaScript
import '../scss/frontend.scss';
|
|
import '../css/userarea.css';
|
|
|
|
import { Tab } from 'bootstrap';
|
|
import DataTable from 'datatables.net-dt';
|
|
|
|
let mediaTable = new DataTable('#mediaTable');
|
|
let scenesTable = new DataTable('#scenesTable'); |