<!DOCTYPE html>
<html lang="">
<head>
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<link rel="stylesheet" href="semantic/dist/semantic.min.css">
I have a basic Vue 3 project and within my public/index.html file I want to include files from root directory (e.g. node_modules or my semantic folder)
I've tried various configurations within vue.config.js file but seems like none of them works.
module.exports = {
publicPath: '',
}
What's the proper way of including custom local css/js files into index.hmtl without moving them directly into public directory?