Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions video/src/styles/main.sass
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import './player.sass'
@import './chart.sass'
@use './player.sass';
@use './chart.sass';

$baseFont: 'Space Mono', monospace

Expand Down
11 changes: 9 additions & 2 deletions video/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import {defineConfig} from 'vite'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'

export default defineConfig({
plugins: [react()],
server: {port: 8000}
server: { port: 8000 },
css: {
preprocessorOptions: {
sass: {
implementation: 'sass'
}
}
}
})